import React from "react"; import { BannerCarousel } from "../../components/BannerCarousel"; import { PromoGrid } from "../../components/PromoGrid"; import { FloorSection } from "../../components/FloorSection"; import { ServiceLinks } from "../../components/ServiceLinks"; import { getBanners, getPromos, getFloors, getServices } from "../../lib/data"; export const revalidate = 300; export default function HomePage({ params }: { params: { locale: string } }) { const locale = params.locale; const banners = getBanners(locale); const promos = getPromos(locale); const floors = getFloors(locale); const services = getServices(locale); return (
{floors.map((f) => ( ))}
); }